Hi,
This is an old thread, but unfortunately i still hadnt managed to fix my issue.
Now yours is another problem altogether and again unfortunately, the "windows" in southern france are not actual windows, so without recompiling the bsp with mohaa radient or similar, its not going to be easy. The reason people could hex edit the other maps windows is because they were actual window objects.
Good thing about reborn, is that we can get entities, loop through them and get all window objects, then change them so they can be jump -out-able, by just setting their spawnflags to 0.
Something like this
Code:
local.min = int(getcvar(sv_maxclients))
for(local.i = local.min;local.i <= 200;local.i++)
{
local.ent = getentity local.i
if(local.ent != NULL)
{
if(typeof(local.ent) == "listener")
{
if(local.ent.classname == "WindowObject")
{
local.ent spawnflags 0
}
}
}
waitframe
}
Bare in mind the getentity is STILL not working on linux